using System.Linq; public class Program { public static int CountVowels(string str) => str.Count(a=>$"aeiouAEIOU".Contains(a)); }